09155e9ddb667a364a0be35f73cb6da662154a33,bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/planner/SynchronizeOperationTest.java,SynchronizeOperationTest,testCopyOfHelper,#,56
Before Change
//Test a copy of the helper code
public void testCopyOfHelper() throws ProvisionException {
ServiceReference providerRef = TestActivator.context.getServiceReference(IProvisioningAgentProvider.class.getName());
IProvisioningAgentProvider provider = (IProvisioningAgentProvider) TestActivator.context.getService(providerRef);
URI p2location = getTestData("p2 location", "testData/synchronizeOperation/p2").toURI();
URI repoLocation = getTestData("p2 location", "testData/synchronizeOperation/repo").toURI();
After Change
//Test a copy of the helper code
public void testCopyOfHelper() throws ProvisionException {
ServiceReference<IProvisioningAgentProvider> providerRef = TestActivator.context.getServiceReference(IProvisioningAgentProvider.class);
IProvisioningAgentProvider provider = TestActivator.context.getService(providerRef);
URI p2location = getTestData("p2 location", "testData/synchronizeOperation/p2").toURI();
URI repoLocation = getTestData("p2 location", "testData/synchronizeOperation/repo").toURI();